home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 3: Developer Tools / Linux Cubed Series 3 - Developer Tools.iso / devel / lang / eiffel / smalleif.97 / se.t / SmallEiffel / lib_test / cat.e < prev    next >
Encoding:
Text File  |  1996-05-02  |  393 b   |  24 lines

  1. -- Part of SmallEiffel -- Read DISCLAIMER file -- Copyright (C) 
  2. -- Dominique COLNET and Suzanne COLLIN -- colnet@loria.fr
  3. --
  4. class CAT
  5.  
  6. inherit 
  7.    QUADRUPED
  8.       redefine fornicate_with
  9.       end;
  10.  
  11. feature {ANY}
  12.    
  13.    fornicate_with(quadrupede: CAT): CAT is
  14.       do
  15.          Result := Current;
  16.       end;
  17.    
  18.    cry is
  19.       do
  20.      std_output.put_string("MIAOU");
  21.       end;
  22.    
  23. end -- CAT
  24.